/* ═══════════════════════════════════════
   APEX CUSTOMS — HEAD UNITS CSS
   Premium Dark Mode | Apple-Inspired | Glass Morphism
   ═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   CSS RESET & VARIABLES
   ═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #050508;
  --bg-secondary: #08080f;
  --bg-card: #0c0c16;
  --bg-card-hover: #12122a;
  --text-primary: #f0f0ff;
  --text-secondary: #b0b0cc;
  --text-muted: #7878a0;
  --accent-blue: #4466ff;
  --accent-green: #30d158;
  --accent-orange: #ff9f0a;
  --accent-purple: #9966ff;
  --accent-cyan: #44ddff;
  --accent-red: #ff453a;
  --accent-gold: #c9a84c;
  --border-subtle: rgba(100,120,255,0.08);
  --border-light: rgba(100,120,255,0.15);
  --glow-blue: rgba(68,102,255,0.15);
  --glow-green: rgba(48,209,88,0.15);
  --glow-orange: rgba(255,159,10,0.15);
  --glow-purple: rgba(153,102,255,0.15);
  --glow-cyan: rgba(68,221,255,0.15);
  --font-display: 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --max-width: 1200px;
  --section-padding: clamp(80px, 12vh, 160px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #6b8aff;
}

.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), var(--accent-cyan), transparent);
  opacity: 0.2;
  border: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ═══════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  border-bottom-color: var(--border-subtle);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  position: relative;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  display: block;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   MEGA MENU — VEHICLE DROPDOWN
   ═══════════════════════════════════════ */
.nav-dropdown-parent {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  min-width: 400px;
  padding-top: 12px; /* invisible bridge — keeps hover alive across the gap */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.nav-dropdown-parent:hover .nav-dropdown,
.nav-dropdown-parent:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-dropdown-inner {
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(68, 102, 255, 0.06);
}

.nav-dropdown-col h6 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-dropdown-col a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  display: block;
  transition: color 0.2s, padding-left 0.2s;
  border-radius: 4px;
}

.nav-dropdown-col a:hover {
  color: var(--text-primary);
  padding-left: 6px;
}

/* Prevent nav-dropdown-trigger default link action */
.nav-dropdown-trigger {
  cursor: default;
}

/* Hide dropdown on mobile */
@media (max-width: 768px) {
  .nav-dropdown-parent .nav-dropdown {
    display: none;
  }
}

/* ═══════════════════════════════════════
   MOBILE VEHICLE ACCORDION
   ═══════════════════════════════════════ */
.mobile-accordion-trigger {
  cursor: pointer;
}
.mobile-accordion-trigger svg {
  transition: transform 0.3s ease;
}
.mobile-accordion-trigger.active svg {
  transform: rotate(180deg);
}

.mobile-vehicle-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-vehicle-list.active {
  max-height: 600px;
}

.mobile-vehicle-group {
  padding: 12px 0;
}
.mobile-vehicle-group strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-vehicle-group a {
  display: block;
  font-size: 16px !important;
  color: var(--text-muted) !important;
  padding: 8px 0;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
}
.mobile-vehicle-group a:hover {
  color: var(--text-primary) !important;
}

/* ═══════════════════════════════════════
   HAMBURGER MENU & MOBILE NAV
   ═══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

.nav-tagline {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-left: 10px;
  text-transform: uppercase;
  opacity: 0.5;
}

@media (max-width: 960px) {
  .nav-tagline {
    display: none;
  }
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  text-align: center;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 0 20px;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 40px;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--accent-blue);
}

.mobile-nav-vehicle-section {
  margin-bottom: 32px;
  text-align: left;
  padding: 0 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.mobile-nav-vehicle-section h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  margin-bottom: 12px;
}

.mobile-nav-vehicle-section .chevron {
  font-size: 16px;
  transition: transform 0.3s;
}

.mobile-nav-vehicle-section.active .chevron {
  transform: rotate(180deg);
}

.mobile-nav-vehicle-list {
  list-style: none;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-vehicle-section.active .mobile-nav-vehicle-list {
  display: block;
  max-height: 500px;
}

.mobile-nav-vehicle-list li {
  margin-bottom: 0;
}

.mobile-nav-vehicle-list a {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  margin-bottom: 8px;
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
}

/* ═══════════════════════════════════════
   BREADCRUMB NAVIGATION
   ═══════════════════════════════════════ */
.breadcrumb {
  padding: 52px clamp(20px, 4vw, 60px) 20px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  margin: 0;
}

.breadcrumb-list a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.breadcrumb-list a:hover {
  color: var(--accent-blue);
}

.breadcrumb-list span {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 4px;
}

.breadcrumb-list li:last-child a {
  color: var(--text-primary);
  cursor: text;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  background-image: url('../images/hero-dudu7-grsport.webp');
  /* Fallback for browsers without WebP support (currently ~97% support) */
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 20, 0.9) 0%,
    rgba(10, 10, 20, 0.7) 40%,
    rgba(10, 10, 20, 0.3) 70%,
    transparent 100%
  );
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(68, 102, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-woofer-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: bassPump 2s ease-in-out infinite;
}

@keyframes bassPump {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.5;
  }
}

.hero-product-float {
  margin-top: 50px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}

.hero-product-float img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 40px 80px rgba(68, 102, 255, 0.25));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotateX(2deg);
  }
  50% {
    transform: translateY(-12px) rotateX(-1deg);
  }
}

.hero-eyebrow {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 104px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 24px);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-price {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-price em {
  font-style: normal;
  color: var(--accent-green);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.8s 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ═══════════════════════════════════════
   VEHICLE-SPECIFIC HERO
   ═══════════════════════════════════════ */
.vehicle-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.vehicle-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(68, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(153, 102, 255, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.vehicle-hero > * {
  position: relative;
  z-index: 1;
}

.vehicle-hero-image {
  margin-top: 40px;
  max-width: 600px;
  width: 100%;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.vehicle-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.vehicle-hero-image .placeholder {
  font-size: 48px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  padding: 8px 0;
}

.trust-item .number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.trust-item .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   HORIZONTAL FEATURE STRIP
   ═══════════════════════════════════════ */
.feature-strip {
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.feature-strip-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.feature-strip-track span {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feature-strip-track span svg {
  flex-shrink: 0;
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blue);
  color: #fff;
  padding: 16px 36px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: #6b8aff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(68, 102, 255, 0.3);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--accent-blue);
  padding: 16px 36px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  color: #6b8aff;
}

.btn-secondary .arrow {
  transition: transform 0.3s;
}

.btn-secondary:hover .arrow {
  transform: translateX(4px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 36px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp:hover {
  background: #32e676;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 16px 36px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   PRODUCT CARDS — HEAD UNITS
   ═══════════════════════════════════════ */
.products-section {
  padding: var(--section-padding) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.product-card.featured {
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)),
                    linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 60px rgba(68, 102, 255, 0.1);
}

.product-card.featured:hover {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 80px rgba(68, 102, 255, 0.15);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-popular {
  background: var(--accent-blue);
  color: #fff;
}

.badge-best {
  background: linear-gradient(135deg, var(--accent-orange), #ff6723);
  color: #fff;
}

.badge-flagship {
  background: linear-gradient(135deg, var(--accent-purple), #9b59b6);
  color: #fff;
}

.product-visual {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px 16px;
}

.product-visual img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-card:nth-child(1) .product-visual {
  background: #f5f5f5;
  border-radius: 12px;
}

.product-card:nth-child(2) .product-visual {
  background: #f5f5f5;
  border-radius: 12px;
}

.product-card:nth-child(3) .product-visual {
  background: #f5f5f5;
  border-radius: 12px;
}

.product-visual-icon {
  width: 180px;
  height: 120px;
  border-radius: 16px;
  background: #1a1a2e;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-visual-icon {
  transform: scale(1.05);
}

.product-visual-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-visual-icon .screen-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-blue);
}

.product-card:nth-child(2) .screen-text {
  color: var(--accent-green);
}

.product-card:nth-child(3) .screen-text {
  color: var(--accent-purple);
}

.product-visual .glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  transition: opacity 0.5s;
}

.product-card:hover .glow {
  opacity: 0.5;
}

.product-card:nth-child(1) .glow {
  background: var(--accent-blue);
}

.product-card:nth-child(2) .glow {
  background: var(--accent-green);
}

.product-card:nth-child(3) .glow {
  background: var(--accent-purple);
}

.product-info {
  padding: 32px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
}

.product-price-note {
  font-size: 14px;
  color: var(--text-muted);
}

.spec-list {
  list-style: none;
  margin-bottom: 28px;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list .spec-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.product-card:nth-child(1) .spec-icon {
  background: rgba(41, 151, 255, 0.15);
  color: var(--accent-blue);
}

.product-card:nth-child(2) .spec-icon {
  background: rgba(48, 209, 88, 0.15);
  color: var(--accent-green);
}

.product-card:nth-child(3) .spec-icon {
  background: rgba(191, 90, 242, 0.15);
  color: var(--accent-purple);
}

.product-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  text-align: center;
  text-decoration: none;
}

.product-card:nth-child(1) .product-cta {
  background: var(--accent-blue);
  color: #fff;
}

.product-card:nth-child(1) .product-cta:hover {
  background: #6b8aff;
}

.product-card:nth-child(2) .product-cta {
  background: var(--accent-green);
  color: #000;
}

.product-card:nth-child(2) .product-cta:hover {
  background: #5ae07a;
}

.product-card:nth-child(3) .product-cta {
  background: var(--accent-purple);
  color: #fff;
}

.product-card:nth-child(3) .product-cta:hover {
  background: #b388ff;
}

.included-tag {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.included-tag p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.included-tag strong {
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   IMAGE SLIDER / CAROUSEL
   ═══════════════════════════════════════ */
.product-slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
}

/* Standalone slider (vehicle pages etc.) */
.slider-container .product-slider {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  height: 400px;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.slider-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  background: transparent;
}

.slider-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(68, 102, 255, 0.15));
}

.main-product-slide img {
  mix-blend-mode: multiply;
}

.slider-slide img {
  max-height: 350px;
  width: auto;
  object-fit: contain;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--accent-blue);
  width: 28px;
  border-radius: 5px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  opacity: 0;
}

.product-slider:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: rgba(68, 102, 255, 0.6);
  border-color: var(--accent-blue);
}

.slider-arrow-left,
.slider-arrow.prev {
  left: 8px;
}

.slider-arrow-right,
.slider-arrow.next {
  right: 8px;
}

/* ═══════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════ */
.comparison-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead th {
  padding: 20px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table thead th:first-child {
  text-align: left;
  color: var(--text-muted);
}

.comparison-table tbody td {
  padding: 14px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.comparison-table tbody td:first-child {
  text-align: left;
  color: var(--text-muted);
  font-size: 13px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table-check {
  color: var(--accent-green);
  font-size: 16px;
}

.table-cross {
  color: var(--text-muted);
  font-size: 14px;
}

.table-highlight {
  font-weight: 600;
  color: var(--text-primary) !important;
}

.col-recommended {
  background: rgba(48, 209, 88, 0.04) !important;
}

/* ═══════════════════════════════════════
   INCLUDED SECTION — WHAT'S IN THE BOX
   ═══════════════════════════════════════ */
.included-section {
  padding: var(--section-padding) 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.included-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s;
}

.included-item:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.included-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(41, 151, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.included-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.included-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   FEATURED ACCESSORIES SECTION
   ═══════════════════════════════════════ */
.featured-accessories-section {
  padding: var(--section-padding) 0;
}

.featured-accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .featured-accessories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-acc-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-acc-card:hover {
  border-color: var(--border-light);
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(68, 102, 255, 0.1);
}

.acc-featured-slider {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.acc-featured-slider .product-slider {
  height: 100%;
}

.acc-featured-slider .slider-slide {
  padding: 0;
}

.acc-featured-slider .slider-slide img {
  width: 100%;
  height: 280px;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.featured-acc-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.featured-acc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.featured-acc-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.featured-acc-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-acc-price-note {
  font-size: 14px;
  color: var(--text-muted);
}

.featured-acc-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.featured-acc-cta {
  display: inline-flex;
  align-items: center;
  padding: 13px 22px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}

.featured-acc-cta:hover {
  background: linear-gradient(135deg, #1da851, #128038);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  color: #fff;
}

@media (max-width: 768px) {
  .featured-accessories-grid {
    grid-template-columns: 1fr;
  }

  .acc-featured-slider {
    height: 240px;
  }

  .acc-featured-slider .slider-slide img {
    height: 240px;
  }

  .featured-acc-title {
    font-size: 18px;
  }

  .featured-acc-price {
    font-size: 24px;
  }
}

/* Premium full-width accessory card */
/* Best seller badge */
.best-seller-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #4466ff, #9966ff);
  color: #fff;
  box-shadow: 0 0 14px rgba(68, 102, 255, 0.55);
  animation: badge-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 14px rgba(68, 102, 255, 0.55); }
  50%       { box-shadow: 0 0 26px rgba(153, 102, 255, 0.75); }
}

/* Best seller card — enhanced glow + slightly lifted background */
.featured-acc-card--bestseller {
  position: relative;
  background: rgba(68, 102, 255, 0.04);
  border-color: rgba(68, 102, 255, 0.25);
  box-shadow: 0 0 40px rgba(68, 102, 255, 0.12), 0 0 80px rgba(153, 102, 255, 0.06);
}

.featured-acc-card--bestseller:hover {
  border-color: rgba(68, 102, 255, 0.45);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 50px rgba(68, 102, 255, 0.22), 0 0 100px rgba(153, 102, 255, 0.1);
}

.featured-acc-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
}

.featured-acc-card--wide .acc-featured-slider {
  width: 460px;
  min-width: 460px;
  height: 360px;
  flex-shrink: 0;
}

.featured-acc-card--wide .acc-featured-slider .slider-slide img {
  height: 360px;
}

.featured-acc-card--wide .featured-acc-body {
  padding: 36px 40px;
  justify-content: center;
}

.featured-acc-card--wide .featured-acc-title {
  font-size: 26px;
}

.featured-acc-card--wide .featured-acc-price {
  font-size: 32px;
}

.featured-acc-card--wide .featured-acc-desc {
  font-size: 16px;
  max-width: 520px;
}

@media (max-width: 1024px) {
  .featured-acc-card--wide {
    flex-direction: column;
  }

  .featured-acc-card--wide .acc-featured-slider {
    width: 100%;
    min-width: 0;
    height: 280px;
  }

  .featured-acc-card--wide .acc-featured-slider .slider-slide img {
    height: 280px;
  }

  .featured-acc-card--wide .featured-acc-title {
    font-size: 20px;
  }

  .featured-acc-card--wide .featured-acc-price {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .featured-acc-card--wide .acc-featured-slider {
    height: 240px;
  }

  .featured-acc-card--wide .acc-featured-slider .slider-slide img {
    height: 240px;
  }
}

/* ═══════════════════════════════════════
   ACCESSORIES SECTION
   ═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   VEHICLE GALLERY SECTION
   ═══════════════════════════════════════ */
.vehicle-gallery {
  padding: var(--section-padding) 0;
}

.vehicle-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .vehicle-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vehicle-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 1;
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.4s;
}

.gallery-item:hover {
  border-color: var(--border-light);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════
   FITMENT SECTION — VEHICLE PAGES
   ═══════════════════════════════════════ */
.fitment-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.fitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .fitment-grid {
    grid-template-columns: 1fr;
  }
}

.fitment-card {
  padding: 36px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all 0.4s;
}

.fitment-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.fitment-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.fitment-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fitment-card .fitment-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   FAQ ACCORDION SECTION
   ═══════════════════════════════════════ */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--border-light);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item--objection {
  border-color: rgba(255,159,10,0.12);
  background: rgba(255,159,10,0.02);
}
.faq-item--objection:hover {
  border-color: rgba(255,159,10,0.25);
  background: rgba(255,159,10,0.04);
}

.faq-divider-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 2rem 0 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,159,10,0.15);
  text-align: center;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s;
  gap: 16px;
  /* Button reset — critical for <button> elements */
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  line-height: inherit;
  outline: none;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
  border-top: 1px solid var(--border-subtle);
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 20px 0;
}

/* ═══════════════════════════════════════
   WHY APEX — SALES OBJECTION KILLER
   ═══════════════════════════════════════ */
.why-section {
  padding: var(--section-padding) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.why-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.why-card:nth-child(1)::before {
  background: var(--accent-blue);
}

.why-card:nth-child(2)::before {
  background: var(--accent-green);
}

.why-card:nth-child(3)::before {
  background: var(--accent-orange);
}

.why-card:nth-child(4)::before {
  background: var(--accent-purple);
}

.why-card:nth-child(5)::before {
  background: var(--accent-red);
}

.why-card:nth-child(6)::before {
  background: var(--accent-gold);
}

.why-card .why-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-card.full-width {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
}

@media (max-width: 768px) {
  .why-card.full-width {
    grid-template-columns: 1fr;
  }
}

.why-card.full-width .why-left h4 {
  font-size: 28px;
  margin-bottom: 16px;
}

.vs-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vs-box {
  padding: 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.6;
}

.vs-box.vs-bad {
  background: rgba(255, 69, 58, 0.08);
  border: 1px solid rgba(255, 69, 58, 0.15);
  color: var(--text-secondary);
}

.vs-box.vs-good {
  background: rgba(48, 209, 88, 0.08);
  border: 1px solid rgba(48, 209, 88, 0.15);
  color: var(--text-secondary);
}

.vs-box h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vs-box.vs-bad h5 {
  color: var(--accent-red);
}

.vs-box.vs-good h5 {
  color: var(--accent-green);
}

/* ═══════════════════════════════════════
   GOOGLE REVIEWS SECTION
   ═══════════════════════════════════════ */
.reviews-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Google Rating Badge */
.google-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 14px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.google-g {
  flex-shrink: 0;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-rating-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.google-stars {
  display: flex;
  gap: 2px;
}

.google-rating-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* Reviews Slider Viewport */
.reviews-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
}

.reviews-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 80s linear infinite;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review Card */
.review-card-g {
  flex-shrink: 0;
  width: 380px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.review-card-g::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(68, 102, 255, 0.3), rgba(153, 102, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-card-g:hover {
  border-color: rgba(68, 102, 255, 0.15);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(68, 102, 255, 0.08);
}

.review-card-g:hover::before {
  opacity: 1;
}

.review-card-g-stars {
  font-size: 1.1rem;
  color: #FBBC05;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card-g-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-g-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.review-card-g-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Edge fade overlays for reviews */
.reviews-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.reviews-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.reviews-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

/* Responsive Reviews */
@media (max-width: 768px) {
  .review-card-g {
    width: 300px;
    padding: 24px;
  }

  .google-rating-badge {
    padding: 10px 20px;
  }

  .google-rating-number {
    font-size: 1.3rem;
  }

  .reviews-fade {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .review-card-g {
    width: 260px;
    padding: 20px;
  }

  .review-card-g-text {
    font-size: 0.88rem;
    -webkit-line-clamp: 3;
  }
}

/* ═══════════════════════════════════════
   PROCESS / HOW IT WORKS
   ═══════════════════════════════════════ */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-step {
  text-align: center;
  padding: 36px 20px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(41, 151, 255, 0.1);
  border: 2px solid var(--accent-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-blue);
  margin: 0 auto 20px;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  opacity: 0.2;
}

@media (max-width: 768px) {
  .process-step:not(:last-child)::after {
    display: none;
  }
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  padding: var(--section-padding) 0;
  text-align: center;
}

.cta-box {
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)),
                    linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(68, 102, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  padding: 60px 0 30px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--accent-blue);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links-col a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes tcPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230,168,23,.7); }
  65%       { transform: scale(1.35); box-shadow: 0 0 0 6px rgba(230,168,23,0); }
}
.tc-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #e6a817;
  border-radius: 50%;
  animation: tcPulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
.footer-tc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4466ff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  opacity: .9;
  transition: color .2s, opacity .2s;
}
.footer-tc-link:hover { color: #7799ff; opacity: 1; }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════ */
.count-up {
  display: inline-block;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .product-info {
    padding: 24px;
  }

  .why-card {
    padding: 28px;
  }

  .vs-compare {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions a,
  .cta-actions button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 40px;
    min-height: 80vh;
    align-items: flex-start;
    background-position: 70% center;
  }

  .hero::after {
    background: linear-gradient(
      to right,
      rgba(10, 10, 20, 0.95) 0%,
      rgba(10, 10, 20, 0.85) 50%,
      rgba(10, 10, 20, 0.6) 100%
    );
  }

  .hero > * {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .product-visual {
    height: 280px;
  }

  .product-visual img {
    max-height: 200px;
  }

  .spec-list li {
    font-size: 13px;
    gap: 8px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 6px 14px;
    font-size: 11px;
  }

  .hero-product-float {
    max-width: 100%;
  }

  .trust-bar-inner {
    gap: 16px;
    padding: 0 20px;
  }

  .trust-item .number {
    font-size: clamp(24px, 5vw, 32px);
  }

  .trust-item .label {
    font-size: 11px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card {
    border-radius: var(--radius-md);
  }

  .product-info {
    padding: 20px;
  }

  .product-name {
    font-size: 24px;
  }

  .product-price {
    font-size: 24px;
  }

  .faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    border-top: 1px solid var(--border-subtle);
  }

  .faq-answer p {
    padding: 16px 0;
  }

  .cta-box {
    padding: 32px 20px;
  }

  .cta-box h2 {
    font-size: clamp(20px, 5vw, 32px);
  }

  .cta-box p {
    font-size: 14px;
  }

  .footer-grid {
    gap: 24px;
  }

}

/* ═══════ PRODUCT IMAGE HANDLING ═══════ */

.product-hero-img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  padding: 16px;
  border-radius: var(--radius-sm, 8px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-hero-img {
  transform: scale(1.03);
}

.product-visual img {
  border-radius: var(--radius-sm, 8px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  /* Images now have transparent backgrounds — no blend mode needed */
}

.product-card:hover .product-visual img {
  transform: scale(1.03);
}

.product-card .product-visual {
  overflow: hidden;
}

/* Premium fallback placeholder when no image loads */
.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #0a0a14 0%, #12121f 50%, #0a0a14 100%);
  border-radius: var(--radius-sm, 8px);
  position: relative;
  overflow: hidden;
}

.product-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.product-placeholder .placeholder-model {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
  position: relative;
  z-index: 1;
}

.product-placeholder .placeholder-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* Ensure product images fill their container nicely */
.slider-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 320px;
}

/* ═══════════════════════════════════════
   INSTALLED GALLERY — INFINITE SCROLL
   ═══════════════════════════════════════ */
.gallery-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.gallery-viewport {
  position: relative;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.gallery-track--top {
  animation: galleryScrollLeft 60s linear infinite;
}

.gallery-track--bottom {
  animation: galleryScrollRight 60s linear infinite;
}



@keyframes galleryScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes galleryScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Gallery item with animated color-shifting glow border */
.gallery-item {
  flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: visible;
}

/* Outer glow wrapper — sits behind the image */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--gallery-angle, 0deg),
    #4466ff, #9966ff, #44ddff, #30d158, #ff9f0a, #4466ff
  );
  z-index: 0;
  opacity: 0.4;
  animation: galleryBorderSpin 4s linear infinite;
  transition: opacity 0.4s;
}

.gallery-item:hover::before {
  opacity: 0.85;
}

@property --gallery-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes galleryBorderSpin {
  to { --gallery-angle: 360deg; }
}

/* Stagger so they don't all sync */
.gallery-item:nth-child(2n)::before  { animation-delay: -1s; }
.gallery-item:nth-child(3n)::before  { animation-delay: -2s; }
.gallery-item:nth-child(4n)::before  { animation-delay: -0.5s; }
.gallery-item:nth-child(5n)::before  { animation-delay: -1.5s; }
.gallery-item:nth-child(7n)::before  { animation-delay: -2.5s; }
.gallery-item:nth-child(11n)::before { animation-delay: -3s; }

/* Soft outer glow that pulses with color */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-md) + 4px);
  background: conic-gradient(
    from var(--gallery-angle, 0deg),
    #4466ff44, #9966ff44, #44ddff44, #30d15844, #ff9f0a44, #4466ff44
  );
  z-index: -1;
  filter: blur(10px);
  opacity: 0.3;
  animation: galleryBorderSpin 4s linear infinite;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 0.6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-md) - 1px);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Edge fade overlays */
.gallery-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.gallery-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.gallery-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

/* Gallery stats bar */
.gallery-counter {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
}

.gallery-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.gallery-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.gallery-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive gallery */
@media (max-width: 768px) {
  .gallery-item {
    width: 280px;
    height: 187px;
  }

  .gallery-counter {
    gap: 32px;
    flex-wrap: wrap;
  }

  .gallery-stat-number {
    font-size: 1.4rem;
  }

  .gallery-fade {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 240px;
    height: 160px;
  }

  .gallery-viewport {
    gap: 10px;
  }
}

/* ═══════════════════════════════════════
   HERO PHOTO-READY ENHANCEMENTS
   ═══════════════════════════════════════ */
/* Hero photo overlay — hidden since ::after handles the gradient */
.hero-photo-overlay {
  display: none;
}

/* ═══════════════════════════════════════
   COMPARE BUTTON ON PRODUCT CARDS
   ═══════════════════════════════════════ */
.product-compare-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 20px;
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.product-compare-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(68, 102, 255, 0.06);
}

/* ═══════════════════════════════════════
   INSTALLATION INCLUDED BADGE
   ═══════════════════════════════════════ */
.install-included-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(68, 102, 255, 0.08);
  border: 1px solid rgba(68, 102, 255, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #7799ff;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  width: fit-content;
}

/* ═══════════════════════════════════════
   SLOT URGENCY BANNER
   ═══════════════════════════════════════ */
.slot-urgency {
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.08), rgba(255, 68, 85, 0.06));
  border: 1px solid rgba(255, 159, 10, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--accent-orange);
  font-weight: 500;
  text-align: center;
  flex-wrap: wrap;
}

.slot-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
  animation: urgencyPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ═══════════════════════════════════════
   SOCIAL PROOF STRIP
   ═══════════════════════════════════════ */
.social-proof-section {
  padding: clamp(48px, 7vh, 80px) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
  flex-wrap: wrap;
  text-align: center;
}

.social-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-proof-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.social-proof-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  max-width: 140px;
  line-height: 1.4;
}

.social-proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

@media (max-width: 600px) {
  .social-proof-divider { display: none; }
  .social-proof-inner { gap: 32px; }
}

/* ═══════════════════════════════════════
   AREAS WE SERVE SECTION
   ═══════════════════════════════════════ */
.areas-section {
  padding: clamp(80px, 10vh, 120px) 0;
  position: relative;
  overflow: hidden;
  background-image: url('../images/garden-route.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.areas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.82) 0%,
    rgba(10, 10, 20, 0.75) 50%,
    rgba(5, 5, 8, 0.88) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.areas-section .container {
  position: relative;
  z-index: 1;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; gap: 32px; }
}

.areas-map-placeholder {
  background: var(--bg-card);
  border: 1px solid rgba(68, 102, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  background-image: url('../images/garden-route.webp');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(68, 102, 255, 0.15);
}

.areas-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.1) 0%,
    rgba(5, 5, 8, 0.15) 50%,
    rgba(5, 5, 8, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.areas-map-icon {
  color: #fff;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(68, 102, 255, 0.6));
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}

.areas-map-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.areas-map-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
  padding: 0 20px 24px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.areas-list-col h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.areas-list-col > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

.areas-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 5, 15, 0.55);
  border: 1px solid rgba(100, 130, 255, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  transition: all 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.area-pill:hover {
  border-color: var(--accent-blue);
  color: #fff;
  background: rgba(68, 102, 255, 0.25);
}

.area-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  opacity: 0.6;
}

.areas-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  padding: 16px 20px;
  background: rgba(5, 5, 15, 0.5);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-blue);
  line-height: 1.6;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.areas-note strong {
  color: #fff;
}

/* ═══════════════════════════════════════
   COMPETITOR COMPARISON MODALS
   ═══════════════════════════════════════ */
.compare-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.compare-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.compare-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 48px);
  position: relative;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.compare-modal-overlay.active .compare-modal {
  transform: scale(1) translateY(0);
}

.compare-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.compare-modal-close:hover {
  background: rgba(255, 68, 85, 0.12);
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.compare-modal-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.compare-modal-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 4px;
}

.compare-modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.compare-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.compare-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.compare-tab:hover {
  border-color: var(--border-light);
  color: var(--text-secondary);
}

.compare-tab.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.compare-panel {
  display: none;
}

.compare-panel.active {
  display: block;
}

.compare-panel-intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-blue);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.compare-col-header {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.compare-col-header.apex-col {
  background: rgba(68, 102, 255, 0.1);
  color: var(--accent-blue);
  border-bottom-color: rgba(68, 102, 255, 0.2);
}

.compare-col-header.rival-col {
  color: var(--text-muted);
  border-left: 1px solid var(--border-subtle);
}

.compare-cell {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(100, 120, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}

.compare-cell:last-of-type,
.compare-grid > .compare-cell:nth-last-child(-n+3) {
  border-bottom: none;
}

.compare-cell.spec-label {
  color: var(--text-muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.01);
}

.compare-cell.apex-cell {
  background: rgba(68, 102, 255, 0.04);
  color: var(--text-primary);
  font-weight: 500;
}

.compare-cell.rival-cell {
  border-left: 1px solid var(--border-subtle);
}

.check-icon { color: var(--accent-green); flex-shrink: 0; }
.cross-icon { color: var(--accent-red); flex-shrink: 0; opacity: 0.8; }

.compare-install-callout {
  background: linear-gradient(135deg, rgba(48, 209, 88, 0.06), rgba(68, 102, 255, 0.06));
  border: 1px solid rgba(48, 209, 88, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px;
}

.compare-install-callout svg {
  flex-shrink: 0;
  color: var(--accent-green);
  margin-top: 2px;
}

.compare-install-callout strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 4px;
}

.compare-install-callout p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.comparison-disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  opacity: 0.7;
}

.comparison-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
}

.bench-disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 8px;
  opacity: 0.7;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   AUTHORITY SECTION
   ═══════════════════════════════════════ */
.authority-section {
  padding: 80px 24px;
  text-align: center;
  position: relative;
}

.authority-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6c63ff;
  margin-bottom: 12px;
}

.authority-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 32px;
}

.authority-text {
  max-width: 800px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.authority-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.authority-stat {
  text-align: center;
}

.authority-stat .stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.authority-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 560px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
  .compare-cell.spec-label,
  .compare-col-header:first-child {
    display: none;
  }
}


/* ═══════════════════════════════════════
   SMART QUOTE FORM — MULTI-STEP MODAL
   ═══════════════════════════════════════ */

/* Overlay */
.hu-form-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(3,3,8,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hu-form-overlay.active { opacity: 1; visibility: visible; }

/* Modal container */
.hu-form-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  width: 100%; max-width: 580px; max-height: 90vh;
  overflow-y: auto; position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 60px rgba(68,102,255,0.06);
}
.hu-form-overlay.active .hu-form-modal { transform: translateY(0) scale(1); }

/* Scrollbar */
.hu-form-modal::-webkit-scrollbar { width: 4px; }
.hu-form-modal::-webkit-scrollbar-track { background: transparent; }
.hu-form-modal::-webkit-scrollbar-thumb { background: rgba(68,102,255,0.2); border-radius: 4px; }

/* Close button */
.hu-form-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-light); background: rgba(8,8,15,0.8);
  color: var(--text-muted); font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.hu-form-close:hover { border-color: var(--accent-blue); color: var(--text-primary); background: rgba(68,102,255,0.08); }

/* Header */
.hu-form-header {
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.hu-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: linear-gradient(135deg, #7799ff, #9966ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hu-form-header p {
  font-size: 0.88rem; color: var(--text-secondary);
  font-weight: 400; margin-top: 0.35rem; line-height: 1.5;
}

/* Progress bar */
.hu-form-progress {
  display: flex; gap: 4px;
  padding: 0 2rem; margin-top: -1px;
}
.hu-form-progress-bar {
  flex: 1; height: 3px;
  background: var(--border-subtle);
  border-radius: 2px; overflow: hidden;
  transition: background 0.4s;
}
.hu-form-progress-bar.active {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}
.hu-form-progress-bar.done { background: var(--accent-blue); }

/* Steps */
.hu-form-step {
  display: none; padding: 2rem;
}
.hu-form-step.active {
  display: block;
  animation: huStepIn 0.3s ease;
}
@keyframes huStepIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hu-form-step h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.4rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-primary);
}
.hu-form-step .hu-step-desc {
  font-size: 0.88rem; color: var(--text-secondary);
  font-weight: 400; margin-bottom: 1.4rem; line-height: 1.55;
}

/* Form fields */
.hu-form-group { margin-bottom: 1.1rem; }
.hu-form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 0.45rem;
}
.hu-form-group input,
.hu-form-group select,
.hu-form-group textarea {
  width: 100%; padding: 0.82rem 1rem;
  background: rgba(68,102,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 8px; color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 400;
  outline: none; transition: all 0.3s;
}
.hu-form-group input:focus,
.hu-form-group select:focus,
.hu-form-group textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(68,102,255,0.06);
  box-shadow: 0 0 20px rgba(68,102,255,0.08);
}
.hu-form-group input::placeholder,
.hu-form-group textarea::placeholder { color: var(--text-muted); }
.hu-form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236688ff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.hu-form-group select option { background: var(--bg-secondary); color: var(--text-primary); }
.hu-form-group textarea { resize: vertical; min-height: 72px; }
.hu-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

/* Head unit tier selection */
.hu-tier-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 1.2rem; }
.hu-tier-option {
  padding: 1rem 0.8rem; border: 1px solid var(--border-light);
  border-radius: 10px; cursor: pointer; transition: all 0.3s;
  text-align: center; position: relative;
}
.hu-tier-option:hover { border-color: rgba(68,102,255,0.3); background: rgba(68,102,255,0.03); }
.hu-tier-option.selected {
  border-color: var(--accent-blue);
  background: rgba(68,102,255,0.08);
  box-shadow: 0 0 20px rgba(68,102,255,0.1);
}
.hu-tier-option.selected::after {
  content: '\2713'; position: absolute; top: 0.4rem; right: 0.4rem;
  width: 20px; height: 20px; background: var(--accent-blue); color: #fff;
  border-radius: 50%; font-size: 0.6rem;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.hu-tier-name {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; margin-bottom: 0.25rem;
  text-transform: uppercase; color: var(--text-primary);
}
.hu-tier-price {
  font-size: 0.72rem; color: var(--accent-orange);
  font-weight: 600;
}
.hu-tier-desc {
  font-size: 0.68rem; color: var(--text-muted);
  font-weight: 400; margin-top: 0.2rem; line-height: 1.35;
}

/* Accessory selection cards */
.hu-acc-options { display: flex; flex-direction: column; gap: 0.55rem; }
.hu-acc-option {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.85rem 1rem; border: 1px solid var(--border-light);
  border-radius: 10px; cursor: pointer; transition: all 0.3s;
}
.hu-acc-option:hover { border-color: rgba(68,102,255,0.25); background: rgba(68,102,255,0.03); }
.hu-acc-option.selected {
  border-color: var(--accent-blue);
  background: rgba(68,102,255,0.06);
  box-shadow: 0 0 15px rgba(68,102,255,0.08);
}
.hu-acc-icon {
  font-size: 1.4rem; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(68,102,255,0.06); border-radius: 8px;
  flex-shrink: 0; border: 1px solid rgba(68,102,255,0.08);
  transition: all 0.3s;
}
.hu-acc-option.selected .hu-acc-icon {
  background: rgba(68,102,255,0.12); border-color: rgba(68,102,255,0.2);
}
.hu-acc-thumb {
  width: 52px; height: 52px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s;
}
.hu-acc-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.hu-acc-option:hover .hu-acc-thumb img {
  transform: scale(1.08);
}
.hu-acc-option.selected .hu-acc-thumb {
  border-color: var(--accent-blue);
  box-shadow: 0 0 12px rgba(68,102,255,0.15);
}
.hu-acc-info { flex: 1; min-width: 0; }
.hu-acc-name {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: 0.15rem; color: var(--text-primary);
}
.hu-acc-price {
  font-size: 0.72rem; color: var(--accent-orange);
  font-weight: 600;
}
.hu-acc-desc {
  font-size: 0.72rem; color: var(--text-muted);
  font-weight: 400; line-height: 1.4;
}
.hu-acc-option.selected .hu-acc-desc { color: var(--text-secondary); }
.hu-acc-check {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 0.6rem; color: transparent;
}
.hu-acc-option.selected .hu-acc-check {
  border-color: var(--accent-blue);
  background: var(--accent-blue); color: #fff;
}
.hu-acc-option.selected .hu-acc-check::after { content: '\2713'; }

.hu-acc-divider {
  font-family: var(--font-display);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin: 0.6rem 0 0.3rem;
  padding-top: 0.6rem; border-top: 1px solid var(--border-subtle);
}

/* Dashboard photo upload */
.hu-photo-upload {
  border: 2px dashed rgba(255,159,10,0.25);
  border-radius: 10px; padding: 1.8rem; text-align: center;
  cursor: pointer; transition: all 0.3s; position: relative;
  overflow: hidden; background: rgba(255,159,10,0.02);
}
.hu-photo-upload:hover {
  border-color: rgba(255,159,10,0.45);
  background: rgba(255,159,10,0.04);
}
.hu-photo-upload.has-file {
  border-color: var(--accent-blue);
  border-style: solid;
  background: rgba(68,102,255,0.04);
}
.hu-photo-upload-icon { font-size: 2.2rem; margin-bottom: 0.5rem; display: block; }
.hu-photo-upload-text {
  font-size: 0.88rem; color: var(--text-secondary); font-weight: 400;
}
.hu-photo-upload-text strong { color: var(--accent-orange); font-weight: 600; }
.hu-photo-upload-sub {
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 0.35rem; font-weight: 400;
}
.hu-photo-tip {
  margin-top: 0.7rem; padding: 0.65rem 0.8rem;
  background: rgba(255,165,0,0.06);
  border: 1px solid rgba(255,165,0,0.18);
  border-radius: 6px; font-size: 0.78rem;
  color: var(--text-secondary); line-height: 1.5;
}
.hu-photo-tip strong { color: #ffaa33; }
.hu-photo-tip em { font-style: normal; text-decoration: underline; text-underline-offset: 2px; }
.hu-photo-preview {
  display: flex; gap: 0.5rem; margin-top: 0.8rem;
  flex-wrap: wrap; justify-content: center;
}
.hu-photo-preview img {
  width: 68px; height: 68px; object-fit: cover;
  border-radius: 6px; border: 1px solid var(--border-light);
}
.hu-photo-why {
  margin-top: 1rem; padding: 0.9rem;
  background: rgba(68,102,255,0.04);
  border: 1px solid rgba(68,102,255,0.1);
  border-radius: 8px; display: flex; align-items: flex-start; gap: 0.7rem;
}
.hu-photo-why-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.hu-photo-why p {
  font-size: 0.82rem; color: var(--text-secondary);
  line-height: 1.55; font-weight: 400;
}
.hu-photo-skip { margin-top: 0.8rem; text-align: center; }
.hu-photo-skip-btn {
  background: none; border: none;
  color: var(--text-muted); font-family: var(--font-body);
  font-size: 0.78rem; cursor: pointer; padding: 0.4rem;
  transition: color 0.3s; text-decoration: underline;
  text-underline-offset: 3px;
}
.hu-photo-skip-btn:hover { color: var(--accent-blue); }

/* Loading overlay */
.hu-form-loading {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(5,5,8,0.92);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  border-radius: var(--radius-md);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.hu-form-loading.active { opacity: 1; pointer-events: all; }
.hu-form-loading-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(68,102,255,0.15);
  border-top-color: #7799ff;
  border-radius: 50%;
  animation: huSpin 0.8s linear infinite;
}
@keyframes huSpin { to { transform: rotate(360deg); } }
.hu-form-loading-text {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
}

/* Footer buttons */
.hu-form-footer {
  padding: 1.3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
}
.hu-form-back {
  padding: 0.65rem 1.3rem; background: transparent;
  border: 1px solid var(--border-light); border-radius: 6px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.05em;
}
.hu-form-back:hover { border-color: var(--text-muted); color: var(--text-primary); }
.hu-form-next {
  padding: 0.72rem 1.8rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  border: none; border-radius: 6px; color: #fff;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hu-form-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(68,102,255,0.3);
}
.hu-form-next.hu-wa-send {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.hu-form-next.hu-wa-send:hover {
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* Success step */
.hu-success-content { text-align: center; padding: 2rem 0; }
.hu-success-icon {
  font-size: 3rem; margin-bottom: 1rem;
  animation: huSuccessPop 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes huSuccessPop { from { transform: scale(0); } to { transform: scale(1); } }
.hu-success-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 0.5rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text-primary);
}
.hu-success-content p {
  font-size: 0.92rem; color: var(--text-secondary);
  font-weight: 400; line-height: 1.6;
}
.hu-photo-reminder {
  margin-top: 1.1rem; padding: 0.9rem;
  background: rgba(255,159,10,0.06);
  border: 1px solid rgba(255,159,10,0.2);
  border-radius: 8px; display: none;
}
.hu-photo-reminder-title {
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700;
  color: var(--accent-orange); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.35rem;
}
.hu-photo-reminder p {
  font-size: 0.85rem; color: var(--text-secondary);
  font-weight: 400; line-height: 1.5;
}
.hu-wa-fallback {
  color: var(--accent-cyan); text-decoration: underline;
  text-underline-offset: 3px;
}

/* Shake animation */
@keyframes huShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Responsive */
@media (max-width: 560px) {
  .hu-form-modal { max-width: 100%; }
  .hu-form-header { padding: 1.5rem 1.5rem 1rem; }
  .hu-form-step { padding: 1.5rem; }
  .hu-form-footer { padding: 1.2rem 1.5rem; }
  .hu-form-progress { padding: 0 1.5rem; }
  .hu-form-row { grid-template-columns: 1fr; }
  .hu-tier-options { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hu-form-header h2 { font-size: 1.1rem; }
}

/* ═══════ AUTHORITY TEASER ═══════ */
.authority-teaser {
  padding: 28px 0;
  background: linear-gradient(135deg, rgba(68,102,255,0.04), rgba(153,102,255,0.04));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.authority-teaser-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.authority-teaser-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.authority-teaser-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.authority-teaser-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.authority-teaser-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.authority-teaser-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 320px;
}

.authority-teaser-text strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .authority-teaser-inner {
    gap: 16px;
  }
  .authority-teaser-text {
    text-align: center;
    max-width: 100%;
    margin-top: 8px;
  }
  .authority-teaser-divider:last-of-type {
    display: none;
  }
}

/* ═══════ VEHICLE PAGE REVIEWS STRIP ═══════ */
.vehicle-reviews-strip {
  padding: clamp(60px, 8vh, 100px) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.vehicle-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.vehicle-review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.vehicle-review-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.vehicle-review-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}

.vehicle-review-author {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.vehicle-reviews-link {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.vehicle-reviews-link a {
  color: var(--accent-blue);
}

/* ═══════ VEHICLE PAGE WHY APEX STRIP ═══════ */
.vehicle-why-strip {
  padding: clamp(40px, 6vh, 70px) 0;
}

.vehicle-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vehicle-why-item {
  text-align: center;
  padding: 20px 16px;
}

.vehicle-why-item strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.vehicle-why-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .vehicle-reviews-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ═══════ FORM: RUNNING TOTAL ═══════ */
.hu-running-total {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  background: rgba(255,159,10,0.04);
  border: 1px solid rgba(255,159,10,0.15);
  border-radius: 10px;
  text-align: center;
}

.hu-running-total-label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.hu-running-total-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.hu-running-total-note {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Audio intro text */
.hu-audio-intro {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0.4rem 0 0.7rem;
  padding: 0;
}

/* Popular badge on accessories */
.hu-acc-popular {
  position: relative;
}

.hu-acc-popular-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(48,209,88,0.1);
  border: 1px solid rgba(48,209,88,0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 6px;
}
